nixpkgs/pkgs/os-specific/linux/devmem2/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

25 lines
665 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "devmem2-2004-08-05";
src = fetchurl {
url = "http://lartmaker.nl/lartware/port/devmem2.c";
sha256 = "14f1k7v6i1yaxg4xcaaf5i4aqn0yabba857zjnbg9wiymy82qf7c";
};
buildCommand = ''
export hardeningDisable=format # fix compile error
cc "$src" -o devmem2
install -D devmem2 "$out/bin/devmem2"
'';
meta = with stdenv.lib; {
description = "Simple program to read/write from/to any location in memory";
homepage = http://lartmaker.nl/lartware/port/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ bjornfor ];
};
}