about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/bi/binsort/package.nix
blob: edb41c6422685646e9b3e4df3f3d7867d5ed54eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib
, stdenv
, fetchurl
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "binsort";
  version = "0.4-1";

  src = fetchurl {
    url = "http://neoscientists.org/~tmueller/binsort/download/binsort-${finalAttrs.version}.tar.gz";
    hash = "sha256-l9T0LlDslxCgZYf8NrbsRly7bREOTGwptLteeg3TNRg=";
  };

  makeFlags = [
    "CC=${stdenv.cc.targetPrefix}cc"
  ];

  installPhase = ''
    runHook preInstall

    mkdir -p $out/bin
    cp binsort $out/bin/

    runHook postInstall
  '';

  meta = with lib; {
    description = "Sort files by binary similarity";
    homepage = "http://neoscientists.org/~tmueller/binsort/";
    license = licenses.bsd3;
    maintainers = with maintainers; [ numinit ];
    platforms = platforms.unix;
  };
})